home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Python 1.3.3 / Python 133 SRC / Python / frozenmain.c < prev    next >
C/C++ Source or Header  |  1995-12-21  |  3KB  |  98 lines

  1. /***********************************************************
  2. Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
  3. The Netherlands.
  4.  
  5.                         All Rights Reserved
  6.  
  7. Permission to use, copy, modify, and distribute this software and its 
  8. documentation for any purpose and without fee is hereby granted, 
  9. provided that the above copyright notice appear in all copies and that
  10. both that copyright notice and this permission notice appear in 
  11. supporting documentation, and that the names of Stichting Mathematisch
  12. Centrum or CWI not be used in advertising or publicity pertaining to
  13. distribution of the software without specific, written prior permission.
  14.  
  15. STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
  16. THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
  17. FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
  18. FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  19. WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  20. ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
  21. OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  22.  
  23. ******************************************************************/
  24.  
  25. /* Python interpreter main program for frozen scripts */
  26.  
  27. #include "Python.h"
  28.  
  29. extern int Py_DebugFlag; /* For parser.c, declared in pythonrun.c */
  30. extern int Py_VerboseFlag; /* For import.c, declared in pythonrun.c */
  31. extern int Py_SuppressPrintingFlag; /* For ceval.c, declared in pythonrun.c */
  32.  
  33. /* Subroutines that live in their own file */
  34. extern char *getversion();
  35. extern char *getcopyright();
  36.  
  37. /* For getprogramname(); set by main() */
  38. static char *argv0;
  39.  
  40. /* Main program */
  41.  
  42. int
  43. main(argc, argv)
  44.     int argc;
  45.     char **argv;
  46. {
  47.     char *p;
  48.     int n, sts;
  49.     int inspect = 0;
  50.     int unbuffered = 0;
  51.  
  52.     argv0 = argv[0];
  53.  
  54.     if ((p = getenv("PYTHONDEBUG")) && *p != '\0')
  55.         Py_DebugFlag = 1;
  56.     if ((p = getenv("PYTHONSUPPRESS")) && *p != '\0')
  57.         Py_SuppressPrintingFlag = 1;
  58.     if ((p = getenv("PYTHONVERBOSE")) && *p != '\0')
  59.         Py_VerboseFlag = 1;
  60.     if ((p = getenv("PYTHONINSPECT")) && *p != '\0')
  61.         inspect = 1;
  62.     if ((p = getenv("PYTHONUNBUFFERED")) && *p != '\0')
  63.         unbuffered = 1;
  64.  
  65.     if (unbuffered) {
  66.         setbuf(stdout, (char *)NULL);
  67.         setbuf(stderr, (char *)NULL);
  68.     }
  69.  
  70.     if (Py_VerboseFlag)
  71.         fprintf(stderr, "Python %s\n%s\n",
  72.             getversion(), getcopyright());
  73.     Py_Initialize();
  74.     PySys_SetArgv(argc, argv);
  75.  
  76.     n = PyImport_ImportFrozenModule("__main__");
  77.     if (n == 0)
  78.         Py_FatalError("__main__ not frozen");
  79.     if (n < 0) {
  80.         PyErr_Print();
  81.         sts = 1;
  82.     }
  83.     else
  84.         sts = 0;
  85.  
  86.     if (inspect && isatty((int)fileno(stdin)))
  87.         sts = PyRun_AnyFile(stdin, "<stdin>") != 0;
  88.  
  89.     Py_Exit(sts);
  90.     /*NOTREACHED*/
  91. }
  92.  
  93. char *
  94. getprogramname()
  95. {
  96.     return argv0;
  97. }
  98.